blob: f9662cb7e9d4cd933c9a396081b689833bb9bb2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import { Metadata } from "next"
import { Suspense } from "react"
import { LoginFormSkeleton } from "@/components/login/login-form-skeleton"
import { LoginFormSHI } from "@/components/login/login-form-shi"
export const metadata: Metadata = {
title: "eVCP Portal",
description: "",
}
export default function AuthenticationPage() {
return (
<>
<Suspense fallback={<LoginFormSkeleton/>}>
<LoginFormSHI />
</Suspense>
</>
)
}
|